home *** CD-ROM | disk | FTP | other *** search
/ AOL File Library: 4,101 to 4,200 / aol-file-protocol-4400-4101-to-4200.zip / AOLDLs / Invoice & Inventory / SBI_ V5.0 Small Bus Invoice / sbi_007.exe / SBI2.ZIP / DBFBAK.BAT < prev    next >
DOS Batch File  |  1992-10-12  |  474b  |  25 lines

  1. @echo off
  2. backup %1 %2 %3
  3. if errorlevel 4 goto error
  4. if errorlevel 3 goto abort
  5. if errorlevel 2 goto conflict
  6. if errorlevel 1 goto nofiles
  7. if errorlevel 0 goto success
  8. :error
  9. echo Backup stopped due to an error
  10. goto exit
  11. :abort
  12. echo Backup stopped by user
  13. goto exit
  14. :conflict
  15. echo Files are in use by another...backup not completed
  16. goto exit
  17. :nofiles
  18. echo No files found to backup
  19. goto exit
  20. :success
  21. echo Backup was successful
  22. goto exit
  23. :exit
  24. pause
  25.